parser = $parser; } /** * @return Stmt[] */ public function parseFile(string $file) : array { return $this->parser->parseFile($file); } /** * @return Stmt[] */ public function parseString(string $sourceCode) : array { return $this->parser->parseString($sourceCode); } }